/* Import Orbitron font - futuristic gaming font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');

/* 2026 Design System - CSS Custom Properties */
:root {
    --primary-purple: #892CFF;
    --primary-pink: #f25fff;
    --accent-red: #CC0637;
    --dark-bg: #0D0617;
    --glass-light: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(242, 95, 255, 0.08);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --blur-amount: 3px;
}

/* Enhanced Cart Icon Design */
[data-testid="headerCart"] {
    touch-action: manipulation;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    z-index: 10000;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.1), rgba(242, 95, 255, 0.1));
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s var(--transition-smooth);
    overflow: hidden;
}

[data-testid="headerCart"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

[data-testid="headerCart"]:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary-purple);
    box-shadow: 
        0 8px 25px rgba(137, 44, 255, 0.4),
        0 0 20px rgba(242, 95, 255, 0.3);
}

[data-testid="headerCart"]:hover::before {
    opacity: 0.1;
}

[data-testid="headerCart"]:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

/* Cart Icon */
[data-testid="headerCart"] .icon-cart {
    color: var(--primary-pink);
    font-size: 24px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(242, 95, 255, 0.3));
}

[data-testid="headerCart"]:hover .icon-cart {
    color: #ffffff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

/* Cart Count Badge */
[data-testid="headerCartCount"] {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    background: linear-gradient(135deg, var(--accent-red), #e91e63) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 22px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: bold !important;
    border: 2px solid #ffffff !important;
    box-shadow: 
        0 2px 8px rgba(204, 6, 55, 0.4),
        0 0 0 2px rgba(204, 6, 55, 0.2) !important;
    transition: all 0.3s var(--transition-smooth) !important;
    animation: pulse 2s infinite !important;
    backdrop-filter: blur(4px) !important;
}

[data-testid="headerCart"]:hover [data-testid="headerCartCount"] {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-red)) !important;
    box-shadow: 
        0 4px 15px rgba(204, 6, 55, 0.6),
        0 0 20px rgba(242, 95, 255, 0.4) !important;
    animation: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Navigation Menu Hover Effects - Desktop */
.menu-level-1 li a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
    border-radius: 8px !important;
    padding: 12px 20px !important;
    margin: 0 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
}

.menu-level-1 li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(137, 44, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.menu-level-1 li a:hover {
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.2), rgba(242, 95, 255, 0.1)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 44, 255, 0.3);
    color: #ffffff !important;
}

.menu-level-1 li a:hover::before {
    left: 100%;
}

.menu-level-1 li a:hover b {
    color: var(--primary-pink) !important;
    text-shadow: 0 0 10px rgba(242, 95, 255, 0.5);
}

.menu-level-1 li a b,
.menu-level-1 li a span,
.menu-level-1 li a strong {
    line-height: 1.4 !important;
    vertical-align: middle !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
}

/* UltraComp Logo Hover Animation */
.site-name a {
    display: inline-block !important;
    transition: all 0.4s var(--transition-smooth) !important;
}

.site-name a:hover {
    transform: translateY(-3px) scale(1.05) !important;
    filter: drop-shadow(0 10px 25px rgba(137, 44, 255, 0.2)) !important;
}

.site-name a img {
    transition: all 0.4s var(--transition-smooth) !important;
}

.site-name a:hover img {
    transform: scale(1.03) !important;
    filter: 
        brightness(1.2) 
        drop-shadow(0 0 8px rgba(242, 95, 255, 0.2))
        drop-shadow(0 0 15px rgba(137, 44, 255, 0.1)) !important;
}

/* Hide Search Icon Completely */
[data-testid="linkSearchIcon"] {
    display: none !important;
}

/* Currency Dropdown Enhancement */
.dropdown button {
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.1), rgba(242, 95, 255, 0.1)) !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    transition: all 0.3s var(--transition-smooth) !important;
    color: var(--primary-pink) !important;
}

.dropdown button:hover {
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.3), rgba(242, 95, 255, 0.2)) !important;
    border-color: var(--primary-purple) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(137, 44, 255, 0.3) !important;
    color: #ffffff !important;
}

/* Social Media Icons Enhancement */
.social-media-icons a {
    transition: all 0.3s var(--transition-smooth) !important;
    border-radius: 50% !important;
    padding: 8px !important;
    background: rgba(137, 44, 255, 0.1) !important;
    margin: 0 4px !important;
}

.social-media-icons a:hover {
    transform: translateY(-3px) scale(1.2) rotate(5deg) !important;
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.3), rgba(242, 95, 255, 0.2)) !important;
    box-shadow: 0 8px 25px rgba(137, 44, 255, 0.4) !important;
}

.social-media-icons a img {
    transition: all 0.3s ease !important;
    filter: brightness(1.2) !important;
}

.social-media-icons a:hover img {
    filter: brightness(1.8) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)) !important;
    transform: scale(1.1) !important;
}

/* Login Button Enhancement */
[data-testid="signin"] {
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.2), rgba(242, 95, 255, 0.1)) !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    transition: all 0.3s var(--transition-smooth) !important;
    color: var(--primary-pink) !important;
    text-decoration: none !important;
}

[data-testid="signin"]:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink)) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(137, 44, 255, 0.4) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

/* Enhanced Dropdown Menus */
.menu-level-2 li a {
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    margin: 2px 8px !important;
    padding: 8px 16px !important;
    font-family: 'Orbitron', monospace !important;
    font-weight: 400 !important;
    letter-spacing: 0.8px !important;
}

.menu-level-2 li a:hover {
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.3), rgba(242, 95, 255, 0.2)) !important;
    transform: translateX(5px) !important;
    border-left: 3px solid var(--primary-pink) !important;
}

/* Smooth Loading Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    animation: shimmer 1.5s infinite;
}

/* Existing Styles */
@media (max-width: 768px) {
    .flags.flags-default {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .flags.flags-default .flag {
        font-size: 10px;
        padding: 3px 8px;
        margin: 3px 0;
        max-width: 90%;
        line-height: 1.1;
        text-align: left;
    }
}

.product-name {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.specifications {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.spec-item {
    font-size: 14px;
    color: var(--primary-pink);
    background-color: transparent;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--primary-purple);
    margin: 3px 5px 3px 0;
    font-weight: bold;
    transition: all 0.3s var(--transition-smooth);
}

.spec-item:hover {
    background: linear-gradient(135deg, rgba(137, 44, 255, 0.2), rgba(242, 95, 255, 0.1));
    box-shadow: 0 0 15px rgba(137, 44, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary-pink);
    color: #ffffff;
}

@media (max-width: 768px) {
    .spec-item {
        font-size: 12px;
        padding: 3px 7px;
    }
    .specifications {
        gap: 5px;
    }
}

h1[data-testid="eshopHeader"] {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.navigation-buttons a,
.navigation-buttons a i {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navigation-in {
    background: linear-gradient(135deg, #281034, #0E204C) !important;
    border-top: 1.5px solid var(--primary-purple);
    box-shadow: 0 0 40px var(--primary-purple);
}

body .menu-level-2 {
    background-color: #1C2024 !important;
}

.menu-level-2 b,
.menu-level-2 span {
    color: #edf2f4;
}

.header-top {
    background: linear-gradient(to bottom, var(--dark-bg) 85%, #280E52 100%) !important;
    position: relative;
    z-index: 1;
}

.header-top b,
.header-top span {
    color: var(--accent-red);
}

#header,
.top-navigation-bar {
    background-color: transparent !important;
    background: transparent !important;
}

.header-top .container,
.header-top .row,
.header-top [class*="col-"],
.header-top > div,
.header-top table,
.header-top tbody,
.header-top tr,
.header-top td {
    background: transparent !important;
    background-color: transparent !important;
}

/* 2026 Mobile Design - Advanced Glassmorphism with Right-Aligned Menu & Icons */
@media (max-width: 768px) {
    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
        position: relative;
    }
    
    /* 2026 Enhanced Glass Header */
    .header-top {
        background: rgba(80, 25, 150, 0.25) !important;
        background-image: 
            linear-gradient(135deg, 
                rgba(60, 20, 120, 0.2) 0%, 
                rgba(100, 30, 160, 0.15) 50%, 
                rgba(80, 25, 150, 0.2) 100%) !important;
        backdrop-filter: blur(20px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
        border: 0.5px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 18px !important;
        margin: 10px 15px !important;
        z-index: 999999999 !important;
        box-shadow: 
            0 4px 16px rgba(80, 25, 150, 0.3),
            inset 0 0.5px 1px rgba(255, 255, 255, 0.3),
            inset 0 -0.5px 1px rgba(0, 0, 0, 0.2) !important;
        animation: floatIn 0.6s var(--transition-smooth) !important;
        transform: translateZ(0) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 8px 16px !important;
        min-height: 60px !important;
        overflow: visible !important;
        width: calc(100% - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        transition: transform 0.3s var(--transition-smooth), 
                    opacity 0.3s ease, 
                    visibility 0.3s ease !important;
        position: relative !important;
    }
    
    /* iPhone-style glass shimmer border effect */
    .header-top::before {
        content: '';
        position: absolute;
        top: -0.5px;
        left: -0.5px;
        right: -0.5px;
        bottom: -0.5px;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.1) 15%,
            transparent 30%,
            transparent 70%,
            rgba(255, 255, 255, 0.1) 85%,
            rgba(255, 255, 255, 0.4) 100%
        );
        border-radius: 18px;
        z-index: -1;
        pointer-events: none;
        opacity: 0.6;
    }
    
    .header-top.header-visible,
    .header-top:not(.header-hidden) {
        transform: translateY(0) translateZ(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .header-top.header-hidden {
        transform: translateY(-100%) translateZ(0) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    body .header-top,
    html .header-top,
    * .header-top {
        background: rgba(80, 25, 150, 0.25) !important;
        background-image: 
            linear-gradient(135deg, 
                rgba(60, 20, 120, 0.2) 0%, 
                rgba(100, 30, 160, 0.15) 50%, 
                rgba(80, 25, 150, 0.2) 100%) !important;
    }
    
    .header-top *,
    .header-top > *,
    .header-top .container,
    .header-top .row,
    .header-top [class*="col-"],
    .header-top > div,
    .header-top table,
    .header-top tbody,
    .header-top tr,
    .header-top td {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
    }
    
    .header-top::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 20%, rgba(100, 30, 160, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(60, 20, 120, 0.05) 0%, transparent 50%) !important;
        border-radius: 17.5px;
        z-index: 1;
        pointer-events: none;
        opacity: 0.8;
    }
    
    .header-top > * {
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* 2026 Enhanced Navigation - Right-Aligned with Icons */
    .navigation-in {
        background: rgba(15, 10, 25, 0.6) !important;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(137, 44, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(242, 95, 255, 0.05) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(20, 15, 40, 0.7) 0%, 
                rgba(15, 10, 30, 0.75) 50%, 
                rgba(25, 15, 45, 0.65) 100%) !important;
        backdrop-filter: blur(4px) saturate(120%) !important;
        -webkit-backdrop-filter: blur(4px) saturate(120%) !important;
        border: 1px solid rgba(242, 95, 255, 0.2) !important;
        border-radius: 24px !important;
        margin: 20px 16px !important;
        z-index: 999999998 !important;
        width: calc(100% - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        max-height: 75vh !important;
        min-height: 400px !important;
        height: auto !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        box-shadow: 
            0 8px 24px rgba(137, 44, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
        transition: transform 0.4s var(--transition-smooth), 
                    opacity 0.4s ease, 
                    visibility 0.4s ease,
                    backdrop-filter 0.3s ease !important;
        transform: translateZ(0) !important;
        overscroll-behavior: contain !important;
        scroll-behavior: smooth !important;
        position: relative !important;
        top: auto !important;
        padding: 20px 0 !important;
        touch-action: pan-y !important;
        
        /* Custom scrollbar for 2026 */
        scrollbar-width: thin;
        scrollbar-color: rgba(242, 95, 255, 0.3) rgba(15, 10, 25, 0.3);
    }
    
    .navigation-in::-webkit-scrollbar {
        width: 6px;
    }
    
    .navigation-in::-webkit-scrollbar-track {
        background: rgba(15, 10, 25, 0.3);
        border-radius: 10px;
    }
    
    .navigation-in::-webkit-scrollbar-thumb {
        background: rgba(242, 95, 255, 0.3);
        border-radius: 10px;
    }
    
    .navigation-in::-webkit-scrollbar-thumb:hover {
        background: rgba(242, 95, 255, 0.5);
    }
    
    .navigation-in > * {
        position: relative !important;
        z-index: 2 !important;
    }
    
    .navigation button,
    .navbar-toggle,
    [data-toggle="collapse"],
    .menu-toggle {
        position: relative !important;
        z-index: 999999999 !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .navigation-in.show,
    .navigation-in.in,
    .navigation-in.collapse.show,
    .navigation-in.collapsing {
        opacity: 1 !important;
        visibility: visible !important;
        backdrop-filter: blur(5px) saturate(130%) !important;
        -webkit-backdrop-filter: blur(5px) saturate(130%) !important;
        border-color: rgba(242, 95, 255, 0.3) !important;
        box-shadow: 
            0 12px 32px rgba(137, 44, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
        overscroll-behavior: contain !important;
        touch-action: pan-y !important;
    }
    
    /* 2026 RIGHT-ALIGNED MENU ITEMS WITH ICONS - NEON ASYMMETRICAL */
    .navigation-in .menu-level-1 {
        text-align: right !important;
        direction: ltr !important;
        padding: 0 12px 0 20px !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .navigation-in .menu-level-1 li {
        text-align: right !important;
        display: block !important;
        width: 100% !important;
    }
    
    .navigation-in .menu-level-1 li a {
        background: rgba(15, 10, 25, 0.5) !important;
        border: 1px solid rgba(242, 95, 255, 0.3) !important;
        border-radius: 12px !important;
        margin: 6px 12px 6px auto !important;
        padding: 10px 20px 10px 50px !important;
        color: var(--primary-pink) !important;
        transition: all 0.3s var(--transition-smooth) !important;
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
        font-family: 'Orbitron', monospace !important;
        font-weight: 500 !important;
        letter-spacing: 1.2px !important;
        text-align: right !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        position: relative !important;
        overflow: hidden !important;
        width: auto !important;
        max-width: calc(100% - 24px) !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        
        /* Clean skeumorphic shadow */
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.3),
            0 0 12px rgba(242, 95, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
        
        text-shadow: 0 0 6px rgba(242, 95, 255, 0.4) !important;
    }
    
    /* Icon before text - positioned on the LEFT side */
    .navigation-in .menu-level-1 li a::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: all 0.3s var(--transition-smooth);
        filter: drop-shadow(0 0 4px rgba(242, 95, 255, 0.5));
    }
    
    /* HERNÍ SESTAVY - Gaming PC Tower icon */
    .navigation-in .menu-level-1 li.menu-item-708 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h.01'/%3E%3Cpath d='M16 6h.01'/%3E%3Crect x='8' y='10' width='8' height='4'/%3E%3C/svg%3E");
    }
    
    /* HERNÍ KLÁVESNICE - Keyboard icon */
    .navigation-in .menu-level-1 li.menu-item-887 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M6 8h.01'/%3E%3Cpath d='M10 8h.01'/%3E%3Cpath d='M14 8h.01'/%3E%3Cpath d='M18 8h.01'/%3E%3Cpath d='M8 12h.01'/%3E%3Cpath d='M12 12h.01'/%3E%3Cpath d='M16 12h.01'/%3E%3Cpath d='M7 16h10'/%3E%3C/svg%3E");
    }
    
    /* KOMUNITA - Community/Users icon */
    .navigation-in .menu-level-1 li.menu-item-776 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    }
    
    /* SERVIS & VÝKUP - Tools icon */
    .navigation-in .menu-level-1 li.menu-item-884 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
    }
    
    /* O NÁS - Info/About icon */
    .navigation-in .menu-level-1 li.menu-item-27 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
    }
    
    /* Novinky - News/Newspaper icon */
    .navigation-in .menu-level-1 li.menu-item-682 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/%3E%3Cpath d='M18 14h-8'/%3E%3Cpath d='M15 18h-5'/%3E%3Cpath d='M10 6h8v4h-8V6Z'/%3E%3C/svg%3E");
    }
    
    /* KONTAKT - Contact/Mail icon */
    .navigation-in .menu-level-1 li.menu-item-29 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    }
    
    /* PŘÍSLUŠENSTVÍ - Accessories/Package icon */
    .navigation-in .menu-level-1 li.menu-item-890 a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
    }
    
    .navigation-in .menu-level-1 li a:hover {
        background: rgba(242, 95, 255, 0.12) !important;
        border-color: var(--primary-pink) !important;
        transform: translateX(-3px) !important;
        color: #ffffff !important;
        
        /* Clean neon glow on hover */
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(242, 95, 255, 0.5),
            0 0 30px rgba(137, 44, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
        
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.6),
            0 0 15px var(--primary-pink) !important;
    }
    
    .navigation-in .menu-level-1 li a:hover::before {
        transform: translateY(-50%) translateX(-2px) scale(1.1);
        filter: drop-shadow(0 0 8px rgba(242, 95, 255, 0.8)) brightness(2);
    }
    
    /* Change SVG icon color on hover - Gaming PC Tower */
    .navigation-in .menu-level-1 li.menu-item-708 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h.01'/%3E%3Cpath d='M16 6h.01'/%3E%3Crect x='8' y='10' width='8' height='4'/%3E%3C/svg%3E");
    }
    
    /* Keyboard */
    .navigation-in .menu-level-1 li.menu-item-887 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M6 8h.01'/%3E%3Cpath d='M10 8h.01'/%3E%3Cpath d='M14 8h.01'/%3E%3Cpath d='M18 8h.01'/%3E%3Cpath d='M8 12h.01'/%3E%3Cpath d='M12 12h.01'/%3E%3Cpath d='M16 12h.01'/%3E%3Cpath d='M7 16h10'/%3E%3C/svg%3E");
    }
    
    /* Community */
    .navigation-in .menu-level-1 li.menu-item-776 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    }
    
    /* Tools */
    .navigation-in .menu-level-1 li.menu-item-884 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
    }
    
    /* Info */
    .navigation-in .menu-level-1 li.menu-item-27 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
    }
    
    /* News */
    .navigation-in .menu-level-1 li.menu-item-682 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/%3E%3Cpath d='M18 14h-8'/%3E%3Cpath d='M15 18h-5'/%3E%3Cpath d='M10 6h8v4h-8V6Z'/%3E%3C/svg%3E");
    }
    
    /* Contact */
    .navigation-in .menu-level-1 li.menu-item-29 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    }
    
    /* Accessories */
    .navigation-in .menu-level-1 li.menu-item-890 a:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
    }
    
    /* Active state */
    .navigation-in .menu-level-1 li a:active {
        transform: translateX(-1px) scale(0.98) !important;
        box-shadow: 
            0 1px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(242, 95, 255, 0.3),
            inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Remove default Shoptet borders */
    .navigation-in > ul > li,
    .navigation-in ul li {
        border: none !important;
        border-color: transparent !important;
    }
    
    .navigation-in.show .menu-level-1,
    .navigation-in.in .menu-level-1,
    .navigation-in.collapse.show .menu-level-1 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navigation-in.show *,
    .navigation-in.in *,
    .navigation-in.collapse.show * {
        overscroll-behavior: contain !important;
    }
    
    /* Enhanced cart for mobile */
    [data-testid="headerCart"] {
        width: 60px !important;
        height: 50px !important;
        border-radius: 14px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        position: relative !important;
        z-index: 20 !important;
    }
    
    [data-testid="headerCart"]:hover {
        background: transparent !important;
        transform: translateY(-1px) scale(1.02) !important;
        box-shadow: none !important;
    }
    
    [data-testid="headerCartCount"] {
        width: 18px !important;
        height: 18px !important;
        font-size: 10px !important;
        top: 5px !important;
        right: 5px !important;
        background: linear-gradient(135deg, var(--accent-red), #e91e63) !important;
        backdrop-filter: blur(8px) !important;
        box-shadow: 
            0 2px 8px rgba(204, 6, 55, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2) !important;
        z-index: 21 !important;
    }
    
    .site-name {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        min-height: 60px !important;
        flex: 1 !important;
        position: relative !important;
        z-index: 20 !important;
    }
    
    .site-name a {
        border-radius: 12px !important;
        background: transparent !important;
        border: none !important;
        transition: all 0.3s var(--transition-smooth) !important;
        padding: 0 !important;
        transform: scale(1.3) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        margin: 0 !important;
    }
    
    /* Smaller logo scale on larger mobile screens to prevent clipping */
    @media (min-width: 480px) and (max-width: 768px) {
        .site-name a {
            transform: scale(1.15) !important;
        }
    }
    
    @media (min-width: 600px) and (max-width: 768px) {
        .site-name a {
            transform: scale(1.0) !important;
        }
    }
    
    .site-name a img {
        max-height: none !important;
        width: auto !important;
        height: auto !important;
    }
    
    .site-name a:hover {
        background: transparent !important;
        transform: translateY(-1px) scale(1.4) !important;
        box-shadow: none !important;
    }
    
    /* Adjust hover on larger screens */
    @media (min-width: 480px) and (max-width: 768px) {
        .site-name a:hover {
            transform: translateY(-1px) scale(1.25) !important;
        }
    }
    
    @media (min-width: 600px) and (max-width: 768px) {
        .site-name a:hover {
            transform: translateY(-1px) scale(1.1) !important;
        }
    }
    
    /* 2026 Enhanced Hamburger Menu */
    .hamburger,
    .navbar-toggler,
    .menu-trigger {
        position: relative !important;
        z-index: 999999999 !important;
        background: rgba(242, 95, 255, 0.05) !important;
        border: 2px solid rgba(242, 95, 255, 0.4) !important;
        border-radius: 12px !important;
        padding: 10px !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: all 0.3s var(--transition-smooth) !important;
        box-shadow: 
            2px 2px 0 rgba(242, 95, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    }
    
    .hamburger:hover,
    .navbar-toggler:hover,
    .menu-trigger:hover {
        border-color: var(--primary-pink) !important;
        background: rgba(242, 95, 255, 0.15) !important;
        transform: scale(1.05) !important;
        box-shadow: 
            3px 3px 0 rgba(242, 95, 255, 0.3),
            0 4px 12px rgba(137, 44, 255, 0.2) !important;
    }
    
    .hamburger:active,
    .navbar-toggler:active,
    .menu-trigger:active {
        transform: scale(0.95) !important;
        box-shadow: 
            1px 1px 0 rgba(242, 95, 255, 0.3),
            inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    }
}

/* Animations */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        backdrop-filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        backdrop-filter: blur(20px);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        backdrop-filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        backdrop-filter: blur(8px);
    }
}

@keyframes fadeInBlur {
    0% { 
        opacity: 0;
        backdrop-filter: blur(0px) saturate(100%) brightness(1);
        -webkit-backdrop-filter: blur(0px) saturate(100%) brightness(1);
    }
    100% { 
        opacity: 1;
        backdrop-filter: blur(6px) saturate(110%) brightness(0.8);
        -webkit-backdrop-filter: blur(6px) saturate(110%) brightness(0.8);
    }
}

@keyframes fadeIn {
    0% { 
        opacity: 0;
    }
    100% { 
        opacity: 1;
    }
}

/* 2026 Micro-interaction for menu item load */
@keyframes menuItemSlide {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .navigation-in .menu-level-1 li {
        animation: menuItemSlide 0.4s var(--transition-smooth) backwards;
    }
    
    .navigation-in .menu-level-1 li:nth-child(1) { animation-delay: 0.05s; }
    .navigation-in .menu-level-1 li:nth-child(2) { animation-delay: 0.1s; }
    .navigation-in .menu-level-1 li:nth-child(3) { animation-delay: 0.15s; }
    .navigation-in .menu-level-1 li:nth-child(4) { animation-delay: 0.2s; }
    .navigation-in .menu-level-1 li:nth-child(5) { animation-delay: 0.25s; }
    .navigation-in .menu-level-1 li:nth-child(6) { animation-delay: 0.3s; }
}
